[Perl] Retrieve the reference
Posted
by Sebastian
on Stack Overflow
See other posts from Stack Overflow
or by Sebastian
Published on 2010-04-05T16:20:53Z
Indexed on
2010/04/05
16:23 UTC
Read the original article
Hit count: 192
Hello, with the hash below, I would like the clients array's reference :
my $this =
{
'name' => $name,
'max_clients' => $max_clients,
'clients' => ()
};
I can't do "\$this{'clients'};" to retrieve the reference.
© Stack Overflow or respective owner